* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;  
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
  max-width: 100vw;
}

body {
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  overflow-y: scroll;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* ===========================
   Navigation Bar
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-links a:not(.glass-btn)::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00f7ff;
  transition: width 0.3s ease;
}

.nav-links a:not(.glass-btn):hover::after,
.nav-links a:not(.glass-btn).active::after {
  width: 100%;
}

.nav-links a:not(.glass-btn):hover {
  color: #00f7ff;
}


.glass-btn {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  font-weight: bold;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.glass-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  color: #00f7ff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: #00ffff;
  text-decoration: none;
  padding: 0px;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 255, 255, 0);
  z-index: 100;
  min-width: 220px;
}

.dropdown-menu a {
  color: #00ffff;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(0, 255, 255, 0);
  color: #ffffff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.glass-btn {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 95px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  font-weight: bold;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.glass-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  color: #00f7ff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .glass-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

.page-heading-section {
  width: 100%;
  margin: 0; /* Remove any default space */
  padding: 0; /* Remove left/right padding */
  margin-top: 0; /* Remove space between navbar and heading */
  text-align: center;
}

.page-heading-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2rem 40px; /* Top 60px, bottom 40px, side padding */
}

.page-heading-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f7ff, #ffffff, #00f7ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite linear;
  text-align: center;
  margin: 0 0 -40px 0; 
}

@keyframes shimmer {
  0% {
    background-position: -300% 0;
  }
  100% {
    background-position: 300% 0;
  }
}

.glass-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  gap: 40px;
}

.glass-rectangle {
  display: flex;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 1200px;
  height: auto;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-rectangle:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.4);
}

.glass-rectangle:hover h2 {
  color: #00ffff;
  text-shadow: 0 0 8px #00ffffaa;
}



.glass-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glass-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
}

.glass-text {
  flex: 2;
  padding-left: 40px;
  color: white;
}

.glass-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.glass-text p {
  font-size: 1rem;
  line-height: 1.6;
}

.glass-rectangle h1,
.glass-rectangle h2 {
  color: white;
  transition: color 0.3s ease;
}

.glass-rectangle:hover h1,
.glass-rectangle:hover h2 {
  color: #00ffff; /* cyan */
}


.grid-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-box {
  background: rgba(255, 255, 255, 0.07); /* Match glass style */
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  color: white;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid-box:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 12px 30px rgba(0, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.grid-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #00ffff;
  transition: color 0.3s ease;
}

.grid-box p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .discover-box {
    flex-direction: column;
    text-align: center;
  }
}


.glass-footer {
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px 20px;
  color: #e0f7fa;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.footer-link {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0 4px;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.copyright {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}


h1, h2 {
  color: cyan;
}

.top-section {
  text-align: center;
  margin-bottom: 40px;
}

.glass-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 40px;
  max-width: 600px;
  text-align: center;
}

.glass-box p {
  color: #ccc;
}
